home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 8 / Mac Magazin and MacEasy Magazine CD - Issue 08.iso / Sharewarebibliothek / Utilities / Minimalist Clock 1.0 / src / file.c < prev    next >
Text File  |  1994-12-07  |  717b  |  32 lines

  1. /* ----------------------------------------------------------------------
  2. file.c
  3. ---------------------------------------------------------------------- */
  4.  
  5. #include    "the_defines.h"
  6. #include    "the_globals.h"
  7. #include    "the_prototypes.h"
  8.  
  9. /* ----------------------------------------------------------------------
  10. DoMenuFile
  11. ---------------------------------------------------------------------- */
  12. void DoMenuFile(theItem)
  13. int theItem;
  14. {
  15.     switch (theItem)
  16.     {
  17.         case FILE_QUIT:
  18.             FileQuit();
  19.             break;
  20.         default:
  21.             break;
  22.     }
  23. }
  24.  
  25. /* ----------------------------------------------------------------------
  26. FileQuit
  27. ---------------------------------------------------------------------- */
  28. void FileQuit()
  29. {
  30.     gDone = true;
  31. }
  32.